chore(actions): disable scheduled Maven snapshot publishing in fork - #1
Conversation
PR Summary by QodoDisable scheduled Maven snapshot publishing in fork
AI Description
High-Level Assessment
Files changed (1)
|
Code Review by Qodo🐞 Bugs (0) 📘 Rule violations (0) 📎 Requirement gaps (0)
Great, no issues found!Qodo reviewed your code and found no material issues that require reviewTip of the day💡 Did you know, you can group findings by type and pick your Finding display, from Minimal to Full |
There was a problem hiding this comment.
🟢 Approval recommended
Change is narrowly scoped to disabling the scheduled trigger and preserves manual workflow execution as intended.
Pull request overview
Disables the automated scheduled trigger for the Java Maven Central SNAPSHOT publishing workflow in this fork, while keeping manual publishing available via workflow_dispatch, to avoid repeated credential/ownership failures on scheduled runs.
Changes:
- Removed the weekday
schedule(cron) trigger fromjava-publish-snapshot.yml. - Added an in-file comment explaining why scheduled publishing is disabled in the fork and that manual dispatch remains available.
File summaries
| File | Description |
|---|---|
.github/workflows/java-publish-snapshot.yml |
Removes the cron schedule and documents the fork-specific rationale while retaining manual dispatch. |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Disables the automatic weekday Maven Central SNAPSHOT publish in this fork while preserving manual
workflow_dispatchaccess.The scheduled job requires Maven Central credentials/publication ownership that are specific to the upstream project, so automated runs in this fork repeatedly reach the deploy step and fail authentication after building successfully.
Core SDK build and test workflows are unchanged.
Note
Disable scheduled cron trigger in
java-publish-snapshot.ymlRemoves the weekday 07:00 UTC cron trigger from the Maven snapshot publishing workflow so it no longer runs automatically in this fork. The manual
workflow_dispatchtrigger is retained.Macroscope summarized 3fbd20d.